home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 December / Designer's Club 1997 December.iso / mac / Idea Source® / Main.Dir / 00034.ls < prev    next >
Encoding:
Text File  |  1997-11-05  |  310 b   |  18 lines

  1. on mouseDown
  2.   puppetSound(1, "zap")
  3.   repeat while the mouseDown
  4.     set the visible of sprite the clickOn to 0
  5.     updateStage()
  6.   end repeat
  7.   set the visible of sprite the clickOn to 1
  8.   updateStage()
  9. end
  10.  
  11. on mouseUp
  12.   if soundBusy(3) then
  13.     sound stop 3
  14.   else
  15.     puppetSound(3, "helpme")
  16.   end if
  17. end
  18.